Add translator hints
authorMatthias Clasen <matthiasc@src.gnome.org>
Thu, 24 Jul 2008 04:02:37 +0000 (04:02 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 24 Jul 2008 04:02:37 +0000 (04:02 +0000)
svn path=/trunk/; revision=20902

ChangeLog
gtk/gtkfilechooserentry.c

index 1b6d3c5c4a62268d340b4bd3e8e6c55a3d534ab4..c5bc213349a1d79312f89953dfa403a21dd90028 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-07-23  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 543915 – "Sole completion" translation issue
+
+       * gtk/gtkfilechooserentry.c: Add translator hints to a
+       bunch of strings. Requested by Andre Klapper
+
 2008-07-23  Matthias Clasen  <mclasen@redhat.com>
 
        Bug 544265 – GDK assumes XFIXES extension
index 1b08132a7754472e2f8a624a4ca17815f2661c45..29149344c398f62e9fef28841090d964e15f0236 100644 (file)
@@ -1064,6 +1064,9 @@ explicitly_complete (GtkFileChooserEntry *chooser_entry)
 
     case NO_MATCH:
       beep (chooser_entry);
+      /* translators: this text is shown when there are no completions 
+       * for something the user typed in a file chooser entry
+       */
       pop_up_completion_feedback (chooser_entry, _("No match"));
       break;
 
@@ -1072,6 +1075,9 @@ explicitly_complete (GtkFileChooserEntry *chooser_entry)
       break;
 
     case NOTHING_INSERTED_UNIQUE:
+      /* translators: this text is shown when there is exactly one completion 
+       * for something the user typed in a file chooser entry
+       */
       pop_up_completion_feedback (chooser_entry, _("Sole completion"));
       break;
 
@@ -1084,6 +1090,10 @@ explicitly_complete (GtkFileChooserEntry *chooser_entry)
       break;
 
     case COMPLETE_BUT_NOT_UNIQUE:
+      /* translators: this text is shown when the text in a file chooser
+       * entry is a complete filename, but could be continued to find
+       * a longer match
+       */
       pop_up_completion_feedback (chooser_entry, _("Complete, but not unique"));
       break;
 
@@ -1117,6 +1127,9 @@ start_explicit_completion (GtkFileChooserEntry *chooser_entry)
     {
       chooser_entry->load_complete_action = LOAD_COMPLETE_EXPLICIT_COMPLETION;
 
+      /* translators: this text is shown while the system is searching
+       * for possible completions for text in a file chooser entry 
+       */
       pop_up_completion_feedback (chooser_entry, _("Completing..."));
     }
 }